home *** CD-ROM | disk | FTP | other *** search
/ 74.208.221.89 / 74.208.221.89.zip / 74.208.221.89 / create-account1 - Copy.aspx < prev    next >
Text File  |  2015-03-14  |  806b  |  18 lines

  1. ∩╗┐<%@ Page Language="VB" Debug="true" %>
  2. <script runat="server">
  3.     Dim mycon As New conValue()
  4.     Dim username, useremail, permissions As String
  5.     Dim userid As Integer
  6.     Dim str1 As String
  7.     Dim str2() As String
  8.     Dim str4() As String
  9.     Dim image(), image1, price(), mrp() As String
  10.     Sub page_load()
  11.         Dim userid As Integer
  12.         mycon.con("Select IsNull(max(userid),0) from w5_shop_profiles", 1, 2)
  13.         userid = mycon.Temp1 + 1
  14.         mycon.con("Insert into w5_shop_profiles (clname,email,mobile,password,userid) values ('" & Request.Form("name") & "','" & Request.Form("email") & "','" & Request.Form("mobile") & "','" & Request.Form("password") & "','" & userid & "')", 1, 3)
  15.         Response.Redirect("index.aspx?msg=User Created")
  16.     End Sub
  17. </script>
  18.